home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts Interactive 4 / CARTS4.iso / mac / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7015.txt < prev    next >
Text File  |  1996-03-22  |  966b  |  25 lines

  1. Returns TRUE if X1,Y1 and X2,Y2 are equal, otherwise it returns FALSE.
  2.  
  3. EqualPt(X1, Y1, X2, Y2 : REAL) : BOOLEAN;
  4.  
  5. Returns TRUE if the two rectangular boundaries X1, Y1, X2, Y2 and X3, Y3, X4, Y4 are equal, otherwise it returns FALSE.
  6.  
  7. EqualRect(X1, Y1, X2, Y2, X3, Y3, X4, Y4 : REAL) : BOOLEAN;
  8.  
  9. Given two rectangular boundaries, specified by X1, Y1, X2, Y2 and X3, Y3, X4, Y4, returns a new boundary which encloses both rectangles in X5, Y5, X6, Y6.
  10.  
  11. UnionRect(X1, Y1, X2, Y2, X3, Y3, X4, Y4 : REAL;  VAR X5, Y5, X6, Y6 : REAL);
  12.  
  13. Returns TRUE if the coordinate X, Y is located within the rectangular boundary specified by X1, Y1 and X2, Y2; otherwise it returns FALSE.
  14.  
  15. PtInRect(X, Y, X1, Y1, X2, Y2 : REAL) : BOOLEAN;
  16.  
  17. Returns the distance between two coordinate locations.
  18.  
  19. Distance(X1, Y1, X2, Y2 : REAL) : REAL;
  20.  
  21. Returns TRUE if the point (X, Y) is inside the polygon connected to H; otherwise it returns FALSE.
  22.  
  23. PtInPoly(X, Y : REAL;  H : HANDLE) : BOOLEAN;
  24.  
  25.